Update error-chain dep for crates-io as well
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Fri, 28 Jul 2017 19:37:08 +0000 (21:37 +0200)
committerGuillaume Gomez <guillaume1.gomez@gmail.com>
Fri, 28 Jul 2017 21:37:54 +0000 (23:37 +0200)
Cargo.lock
src/cargo/util/errors.rs
src/crates-io/Cargo.toml
src/crates-io/lib.rs

index 1a6ec09f9facfd25c5758d52e32d2adea027ed74..08ab0affd618b0934607477bf6d48e546b1bf3de 100644 (file)
@@ -167,7 +167,7 @@ name = "crates-io"
 version = "0.11.0"
 dependencies = [
  "curl 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
- "error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "error-chain 0.11.0-rc.2 (registry+https://github.com/rust-lang/crates.io-index)",
  "serde 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
  "serde_derive 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
  "serde_json 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -246,14 +246,6 @@ dependencies = [
  "regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
-[[package]]
-name = "error-chain"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "backtrace 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
 [[package]]
 name = "error-chain"
 version = "0.11.0-rc.2"
@@ -1019,7 +1011,6 @@ dependencies = [
 "checksum docopt 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3b5b93718f8b3e5544fcc914c43de828ca6c6ace23e0332c6080a2977b49787a"
 "checksum dtoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "80c8b71fd71146990a9742fc06dcbbde19161a267e0ad4e572c35162f4578c90"
 "checksum env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3ddf21e73e016298f5cb37d6ef8e8da8e39f91f9ec8b0df44b7deb16a9f8cd5b"
-"checksum error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8"
 "checksum error-chain 0.11.0-rc.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38d3a55d9a7a456748f2a3912c0941a5d9a68006eb15b3c3c9836b8420dc102d"
 "checksum filetime 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "5363ab8e4139b8568a6237db5248646e5a8a2f89bd5ccb02092182b11fd3e922"
 "checksum flate2 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)" = "36df0166e856739905cd3d7e0b210fe818592211a008862599845e012d8d304c"
index 0f4cd4cb4c23fa9d897ea40efc015f8e8d1485f1..34ad73cc8af4cc1cddfa473ec72b4478c08c0b08 100644 (file)
@@ -1,3 +1,5 @@
+#![allow(unknown_lints)]
+
 use std::error::Error;
 use std::fmt;
 use std::io;
index eb9638964dc5cf2761964d859baad071e5690140..9a771a071eec786f030846d534656f0cde8aeb9b 100644 (file)
@@ -14,7 +14,7 @@ path = "lib.rs"
 
 [dependencies]
 curl = "0.4"
-error-chain = "0.10.0"
+error-chain = "0.11.0-rc.2"
 serde = "1.0"
 serde_derive = "1.0"
 serde_json = "1.0"
index 05ca8e8de70e134eebeb0cae4b09e4ef7cbda15c..cd8df416d8d87ea6bd394b3f65eac017d62cb062 100644 (file)
@@ -1,3 +1,5 @@
+#![allow(unknown_lints)]
+
 extern crate curl;
 extern crate url;
 #[macro_use]